InstallScript := func(partFrame, removeFrame) begin	
	RegTransport(kTransportSymbol, partFrame.(kTransportSymbol));
	RegUnionSoup(kAppSymbol, kCustomDataSoupDef);
end;
		
RemoveScript := func(removeFrame) begin
	UnRegTransport(EnsureInternal(kTransportSymbol));	
	UnRegUnionSoup(kCustomDataSoupName, kAppSymbol);
end;